@charset "utf-8";
/*
 * ==============================
 * @description: [WebSite] 基础样式模块
 */

/** 清除内外边距 **/
body,h1,h2,h3,h4, h5,h6,hr,blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
form, fieldset, legend, button,p, input, textarea, /* form elements 表单元素 */
th, td /* table elements 表格元素 */ {
	margin: 0;
	padding: 0;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var,
optgroup {
	font-style: normal;
	font-weight: normal;
} /* 将斜体扶正 */ /* 注：optgroup 无法扶正 */
/** 设置默认字体 **/
*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body,
label,
button,
input,
select,
textarea {
	line-height: var(--defaultLineHeight);
	color: var(--defaultFontColor);
	font-family:'Microsoft Yahei', 'Hiragino Sans GB', 'Helvetica Neue', Helvetica, Tahoma, 'WenQuanYi Micro Hei', SimSun, sans-serif;
	font-size: var(--defaultFontSize);
}

button,
input,
select,
option,
textarea {
	outline: none;
	border: none;
	*font-size: 100%; /*to enable resizing for IE*/
}
textarea {
	resize: none;
} /*防止拖动*/
/** 重置列表元素 **/
ul,
ol,
dl,
li {
	list-style-type: none;
}
em,
s,
i {
	font-style: normal;
	text-decoration: none;
} /* 将斜 体扶正 */
fieldset,
img,
iframe {
	border: 0;
} /* img 搭车：让链接里的 img 无边框 */
img {
	width: 100%;
	border: 0;
	vertical-align: middle;
	object-fit: cover;
} /*  去掉图片低测默认的3像素空白缝隙*/
img,
a img {
	-ms-interpolation-mode: bicubic;
} /*ie图片缩放不失真*/
iframe {
    vertical-align: text-top;
	display: block;
}
/** 重置文本格式元素 **/
a {
	color: var(--defaultLinkColor);
	text-decoration: none;
	cursor: pointer;
	outline: none;
	blr: expression(this.onFocus=this.blur());
} /*blr：ie鼠标点击时不显示虚线*/
a:active,
a:hover {
	color: var(--defaultHoverColor)
	text-decoration: none;
}
a:active {
	background-color: transparent;
} /*背景颜色透明*/
a:focus {
	outline: 0 none;
} /*去掉点击链接时周围的虚线框*/
:focus {
	outline: 0 none;
}
::-moz-selection {
	background: #39f;
	color: #ffffff;
	text-shadow: none;
}
::selection {
	background: #39f;
	color: #ffffff;
	text-shadow: none;
}
.container,
.container-fluid {
	padding-right: 0;
	padding-left: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	text-decoration: none;
	font-weight: normal;
	font-size: 100%;
} /*100%=父级大小*/
sup {
	vertical-align: text-top;
} /* 重置, 减少对行高的影响 */
sub {
	vertical-align: text-bottom;
}
/* 重置 HTML5 元素 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	display: block;
	margin: 0;
	padding: 0;
}
body {
	min-width: 1300px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/*字体抗锯齿*/
    background-color: var(--defaultBodyColor);
    
}
/*版心提取*/
.container {
	margin: 0 auto;
	padding: 0;
	width: 1200px;
    max-width: 1200px;
}
.container-w {
	margin: 0;
	padding: 0;
	width: 100%;
    max-width: 100%;
}
.w50{
    width: 50%;
}
.w1160px{
    width: 1160px;
    max-width: 1160px;
}

/* 主题颜色 */
:root {
	--defaultBodyColor: #f3f3f3;
	--defaultFontColor: #333;
	--defaultLinkColor: #333;
    --defaultTitleColor:#286dc0;
    --defaultHoverColor:#f3b036;
    --defaultBorderColor:#ffd68c;
    --defaultSpanColor:#949393;
    --defaultLineColor:#e4e4e4; 
    --defaultFontSize: 18px;
    --defaultLineHeight:1.6;
}
/* [Base] Function
------------------------------*/

.fn-fl {
	float: left;
}
.fn-fr {
	float: right;
}
.fn-cl {
	clear: both;
}
/* 清除浮动 */
.fn-clear {
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
	width: 0;
	height: 0;
	line-height: 0;
	font-size: 0;
}
.fn-clearfix:after {
	display: block;
	visibility: hidden;
	content: '';
	clear: both;
	height: 0;
	font-size: 0;
}
.fn-clearfix {
	display: block;
}
* html .fn-clearfix {
	height: 1%;
	zoom: 1;
}

.not-width,
.not-width3,
.not-width2 {
	margin-right: 1em;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}
.not-width {
	-webkit-line-clamp: 1;
	-webkit-line-clamp: 1;
}
.not-width2 {
	-webkit-line-clamp: 2;
}
.not-width3 {
	-webkit-line-clamp: 3;
}
/* bfc */
.fn-bfc {
	height: 100%;
	overflow: hidden;
	zoom: 1;
}
/* 层级生效 */
.fn-inMin{
    transform: translateZ(0);
    z-index: -1;
}
.fn-inMax{
    transform: translateZ(0);
    z-index: 99999;
}
.fn-in0{
    transform: translateZ(0);
    z-index: 0;
}
.fn-in1{
    transform: translateZ(0);
    z-index: 1;
}
/* 伸缩效果 */
.stretch {
	width: 100%;
	transform: scaleY(0);
	transform-origin: 50% 0;
	transition: all 0.6s;
}
.fn-hide{
    display: none;
}
.fn-show{
    display: block;
    visibility: hidden;
}
.fn-border-b{
    border: 1px solid #ccc;
}
.fn-shadow{
    box-shadow: 0 0 10px 1px rgba(0,0,0,.1);
}
/* 列表样式 */

.gd-list li{
    height: 60px;
	line-height:60px;
    border-bottom: 1px dashed #ccc;
}
.gd-list a{	
    float: left;
    width: 80%;
   
}
.gd-list a:hover{
     color: var(--defaultTitleColor);
     font-weight: bold;
}

.gd-list span{
    float: right;
    font-size: 16px;
    color: #949393;
}





/* 竖屏 */
@media all and (orientation: portrait) {
	/* 自定义样式 */
}
/* 横屏 */
@media all and (orientation: landscape) {
	/* 自定义样式 */
}

/* 避免 100vh 高时出现滚动条 */
@supports (-webkit-touch-callout: none) {
	body {
		height: -webkit-fill-available;
	}
}
